Zum Hauptinhalt springen

Git for dummies

Git for dummies

Version Taggen:

| git checkout release/513 git pullgit tag 51300git push origin tags/51300 |
| :---- |

Version mit Buildhelber erhöhen, svn message kopieren, dialog schließen.

| git add \-u git commit \-m"Kopierter Wert von vorhin" git push |
| :---- |

### Merge in Tag:

| git pull \-tags git checkout tags/51300 git tag \-d 51300 git cherry-pick xxxxxxxx git tag 51300 git push origin tags/51300 \-f |
| :---- |

Difference vom master zum Branch:
git cherry master release/515 | grep "+" | awk '{print $2}' | xargs git log \--author=Manuel \-1;